home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / spf.arc / TUTORIAL.SPF < prev   
Text File  |  1989-10-09  |  1KB  |  29 lines

  1. 10   rem this is a simple basic program to print onn up labelsÇ
  2. 20   input "enter the name",name$
  3. 30   input "enter addr1",ad1$
  4. 40   input "enter city",city$
  5. 50   input "enter state",state$
  6. 60   input "enter zip",zip$
  7. 70   lprint name$
  8. 80   lprint ad1$
  9. 90   lprint city$                                                       You will notice you are editing columns 73 to 144.                      You are now editing columns 145 to 216.  You could keep going
  10. 100  lprint state$                                                      Press F10 key again.                                                    until you hit column 4000 which is the SPF/PC maximum record size.
  11. 110  lprint zip$                                                                                                                                Now press F9 twice to get back to the BASIC program.
  12. 120  lprint name$
  13. 130  lprint ad1$
  14. 140  lprint city$
  15. 150  lprint state$
  16. 160  lprint zip$
  17. 170  lprint name$
  18. 180  lprint ad1$
  19. 190  lprint city$
  20. 200  lprint state$
  21. 210  lprint zip$
  22. 220  lprint name$
  23. 230  lprint ad1$
  24. 240  lprint city$
  25. 250  lprint state$
  26. 260  lprint zip$
  27. 270  goto 20
  28. 280  end
  29.